home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / domacnost a kancelar / autoit / autoit-v3-setup.exe / Examples / Helpfile / _IEGetObjByName.au3 < prev    next >
Text File  |  2007-09-08  |  443b  |  9 lines

  1. ; *******************************************************
  2. ; Example 1 - Open a browser to the form example, get an object reference
  3. ;                to the element with the name "ExampleForm".  In this case the
  4. ;                result is identical to using $oForm = _IEFormGetObjByName($oIE, "ExampleForm")
  5. ; *******************************************************
  6. ;
  7. #include <IE.au3>
  8. $oIE = _IE_Example ("form")
  9. $oForm = _IEGetObjByName ($oIE, "ExampleForm")